This is an R Markdown Notebook. When you execute code within the notebook, the results appear beneath the code.

Try executing this chunk by clicking the Run button within the chunk or by placing your cursor inside it and pressing Cmd+Shift+Enter.

library("devtools")
install_github("jw156605/SLICER")
Skipping install of 'SLICER' from a github remote, the SHA1 (cb1be8ac) has not changed since last install.
  Use `force = TRUE` to force installation
library(Seurat)
library(readr)
library(tidyverse)
library(HGC) 
library(latticeExtra)
library(lattice) 
library(RColorBrewer)
library(clusterProfiler)
library(org.Mm.eg.db)
library(AnnotationDbi)
exp = read_csv("normalized_data.csv")
exp = discard(exp,~all(is.na(.) |.  == ""))
exp = distinct(exp, `...1`, .keep_all = TRUE)
# filtering out the reprogramming transcription factors 
exp = filter(exp, !`...1`%in% c("Mef2c", "Gata4", "Tbx5"))
exp = column_to_rownames(exp, var="...1")

seurat.obj = CreateSeuratObject(counts = exp)
seurat.obj = NormalizeData(seurat.obj)
seurat.obj = FindVariableFeatures(seurat.obj, selection.method =  "vst", nfeatures = 10000)
all.genes = rownames(seurat.obj)
seurat.obj = ScaleData(seurat.obj, features = all.genes)
seurat.obj = RunPCA(seurat.obj, features =  VariableFeatures(seurat.obj))
ElbowPlot(seurat.obj)
seurat.obj = FindNeighbors(seurat.obj, dims = 1:15)
Computing nearest neighbor graph
Computing SNN
seurat.obj = FindClusters(seurat.obj, resolution = 1.75)
Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck

Number of nodes: 454
Number of edges: 16805

Running Louvain algorithm...
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Maximum modularity in 10 random starts: 0.4797
Number of communities: 8
Elapsed time: 0 seconds
identified_cells = read.csv("paper_cell_states.csv", row.names = 1, header=TRUE)
identified_cells = identified_cells[match(rownames(seurat.obj@meta.data), rownames(identified_cells)),]
seurat.obj@meta.data$cc_paper = identified_cells$CC
seurat.obj@meta.data$cat_paper = identified_cells$stage
seurat.obj@meta.data$cc_hclust = "CCI"
seurat.obj@meta.data[active_cells,]$cc_hclust = "CCA"
Idents(seurat.obj)  = "RNA_snn_res.1.75"
seurat.obj = RunUMAP(seurat.obj, dims = 1:15)
Warning: The default method for RunUMAP has changed from calling Python UMAP via reticulate to the R-native UWOT using the cosine metric
To use Python UMAP via reticulate, set umap.method to 'umap-learn' and metric to 'correlation'
This message will be shown once per session
17:59:25 UMAP embedding parameters a = 0.9922 b = 1.112
17:59:25 Read 454 rows and found 15 numeric columns
17:59:25 Using Annoy for neighbor search, n_neighbors = 30
17:59:25 Building Annoy index with metric = cosine, n_trees = 50
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
17:59:25 Writing NN index file to temp file /var/folders/fj/09brpj8s5mz1c5wxktl80s080000gn/T//RtmpE0XJwn/file8ed51e4226b8
17:59:25 Searching Annoy index using 1 thread, search_k = 3000
17:59:25 Annoy recall = 100%
17:59:26 Commencing smooth kNN distance calibration using 1 thread with target n_neighbors = 30
17:59:27 Initializing from normalized Laplacian + noise (using irlba)
17:59:27 Commencing optimization for 500 epochs, with 17028 positive edges
Using method 'umap'
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
17:59:28 Optimization finished
clusters = DimPlot(seurat.obj, group.by = "RNA_snn_res.1.75", label = TRUE, reduction = "umap")
condition = DimPlot(seurat.obj, group.by = "cc_paper", label = TRUE, reduction = "umap")

condition|clusters

seurat.obj = RunTSNE(seurat.obj, dims = 1:15)
DimPlot(seurat.obj, reduction = "tsne", group.by = 'RNA_snn_res.1.75')

markers = FindAllMarkers(seurat.obj, logfc.threshold =  0.25, min.pct = 0.1, only.pos = FALSE, test.use = 'MAST')
top_markers = markers %>%
    group_by(cluster) %>%
    slice_max(n = 2, order_by = avg_log2FC)
FeaturePlot(seurat.obj, features = c("Dhrs3"), min.cutoff = 'q10')

VlnPlot(seurat.obj, features = c("Rbp1", "Dhrs3"))

VlnPlot(seurat.obj, features = c("Fstl1", "Bgn"))

VlnPlot(seurat.obj, features = c("Serpinh1", "Dsp"))

VlnPlot(seurat.obj, features = c("Prc1", "Birc5"))

## cell cycle 
s.genes <- str_to_title(cc.genes$s.genes)
g2m.genes <- str_to_title(cc.genes$g2m.genes)

seurat.obj = CellCycleScoring(seurat.obj, s.features = s.genes, g2m.features = g2m.genes)
clusters = DimPlot(seurat.obj, group.by = "RNA_snn_res.1.75", label = TRUE, reduction = "umap")
real_condition = DimPlot(seurat.obj, group.by = "cc_paper", label = TRUE, reduction = "umap") 
phase = DimPlot(seurat.obj, group.by = "Phase", label = TRUE, reduction = "umap") 
cat = DimPlot(seurat.obj, group.by = "cc_hclust", label = TRUE, reduction = "umap") 

clusters|real_condition|phase|cat

NA
NA

subsetting the cells that fit with hclust and performing clustering on each group

subset(x = seurat.obj, subset = cc_hclust == "CCA")
An object of class Seurat 
14410 features across 80 samples within 1 assay 
Active assay: RNA (14410 features, 10000 variable features)
 3 dimensional reductions calculated: pca, umap, tsne

clustering CCI cels

cci_seurat = FindNeighbors(cci_seurat, dims = 1:15)
cci_seurat = FindClusters(cci_seurat, resolution = 1)
cl= DimPlot(cci_seurat, group.by = "RNA_snn_res.1",label = TRUE)
pap = DimPlot(cci_seurat, group.by = "cat_paper", label = TRUE)
cl|pap

identifying CCI cells

cci_markers = FindAllMarkers(cci_seurat, logfc.threshold =  0.25, min.pct = 0.1, only.pos = FALSE, test.use = 'MAST')
cci_top_markers = cci_markers %>%
    group_by(cluster) %>%
    slice_min(n = 5, order_by = p_val_adj)
VlnPlot(cci_seurat, features = c("Fstl1", "Bgn"))

VlnPlot(cci_seurat, features = c("Tnni3", "Smpx"))

VlnPlot(cci_seurat, features = c("Serpinh1", "Dsp"))

VlnPlot(cci_seurat, features = c("Clca2", "Rbp1"))

VlnPlot(cci_seurat, features = c("Cfh", "B4galt1"))

Fstl1 involved in endothelial cell differentiation and endothelial cell migration and Bgn is a gene that is used for connective tissue metabolism -> lower expression -> cluster 0 = iCM

Tnni3, smpx, dsp used for cardiomycoytes -> cluster 2 = pre-iCM, cluster 1 and 3 are still fibroblasts

cluseter 1 further away from cluster 0 = fibroblastr clusetr 3 = induced fibroblasts

Idents(cci_seurat)  = "RNA_snn_res.1"
cci_seurat = RenameIdents(cci_seurat, `0` = "iCM")
cci_seurat = RenameIdents(cci_seurat, `1` = "Fib")
cci_seurat = RenameIdents(cci_seurat, `2` = "piCM")
cci_seurat = RenameIdents(cci_seurat, `3` = "iFib")

clustering CCA cells

cca_seurat = FindClusters(cca_seurat, resolution = 1)
Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck

Number of nodes: 80
Number of edges: 2244

Running Louvain algorithm...
0%   10   20   30   40   50   60   70   80   90   100%
[----|----|----|----|----|----|----|----|----|----|
**************************************************|
Maximum modularity in 10 random starts: 0.2948
Number of communities: 3
Elapsed time: 0 seconds
cl= DimPlot(cca_seurat, group.by = "RNA_snn_res.1",label = TRUE)

pap = DimPlot(cca_seurat, group.by = "cat_paper", label = TRUE)
cl|pap

identifying CCA cells

cca_markers = FindAllMarkers(cca_seurat, logfc.threshold =  0.25, min.pct = 0.1, only.pos = FALSE, test.use = 'MAST')
Calculating cluster 0

 Completed [=====>-------------------------------------------------------------------------------------------------]   6% with 0 failures
 Completed [======>------------------------------------------------------------------------------------------------]   6% with 0 failures
 Completed [======>------------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  32% with 0 failures
 Completed [================================>----------------------------------------------------------------------]  32% with 0 failures
 Completed [================================>----------------------------------------------------------------------]  33% with 0 failures
 Completed [=================================>---------------------------------------------------------------------]  33% with 0 failures
 Completed [==================================>--------------------------------------------------------------------]  34% with 0 failures
 Completed [===================================>-------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  65% with 0 failures
 Completed [==================================================================>------------------------------------]  65% with 0 failures
 Completed [===================================================================>-----------------------------------]  66% with 0 failures
 Completed [====================================================================>----------------------------------]  67% with 0 failures
 Completed [=====================================================================>---------------------------------]  67% with 0 failures
 Completed [=====================================================================>---------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  90% with 0 failures
 Completed [============================================================================================>----------]  90% with 0 failures
 Completed [============================================================================================>----------]  91% with 0 failures
 Completed [=============================================================================================>---------]  91% with 0 failures
 Completed [=============================================================================================>---------]  92% with 0 failures
 Completed [==============================================================================================>--------]  92% with 0 failures
 Completed [==============================================================================================>--------]  93% with 0 failures
 Completed [===============================================================================================>-------]  93% with 0 failures
 Completed [===============================================================================================>-------]  94% with 0 failures
 Completed [================================================================================================>------]  94% with 0 failures
 Completed [================================================================================================>------]  95% with 0 failures
 Completed [=================================================================================================>-----]  95% with 0 failures
 Completed [=================================================================================================>-----]  96% with 0 failures
 Completed [==================================================================================================>----]  96% with 0 failures
 Completed [==================================================================================================>----]  97% with 0 failures
 Completed [===================================================================================================>---]  97% with 0 failures
 Completed [===================================================================================================>---]  98% with 0 failures
 Completed [====================================================================================================>--]  98% with 0 failures
 Completed [====================================================================================================>--]  99% with 0 failures
 Completed [=====================================================================================================>-]  99% with 0 failures
 Completed [======================================================================================================>] 100% with 0 failures
 Completed [=======================================================================================================] 100% with 0 failures
                                                                                                                                         

Done!
Combining coefficients and standard errors
Calculating log-fold changes
Calculating likelihood ratio tests
Refitting on reduced model...

 Completed [==>----------------------------------------------------------------------------------------------------]   3% with 0 failures
 Completed [===>---------------------------------------------------------------------------------------------------]   3% with 0 failures
 Completed [===>---------------------------------------------------------------------------------------------------]   4% with 0 failures
 Completed [====>--------------------------------------------------------------------------------------------------]   4% with 0 failures
 Completed [====>--------------------------------------------------------------------------------------------------]   5% with 0 failures
 Completed [=====>-------------------------------------------------------------------------------------------------]   5% with 0 failures
 Completed [=====>-------------------------------------------------------------------------------------------------]   6% with 0 failures
 Completed [======>------------------------------------------------------------------------------------------------]   6% with 0 failures
 Completed [======>------------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  32% with 0 failures
 Completed [================================>----------------------------------------------------------------------]  32% with 0 failures
 Completed [================================>----------------------------------------------------------------------]  33% with 0 failures
 Completed [=================================>---------------------------------------------------------------------]  33% with 0 failures
 Completed [==================================>--------------------------------------------------------------------]  34% with 0 failures
 Completed [===================================>-------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  65% with 0 failures
 Completed [==================================================================>------------------------------------]  65% with 0 failures
 Completed [===================================================================>-----------------------------------]  66% with 0 failures
 Completed [====================================================================>----------------------------------]  67% with 0 failures
 Completed [=====================================================================>---------------------------------]  67% with 0 failures
 Completed [=====================================================================>---------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  90% with 0 failures
 Completed [============================================================================================>----------]  90% with 0 failures
 Completed [============================================================================================>----------]  91% with 0 failures
 Completed [=============================================================================================>---------]  91% with 0 failures
 Completed [=============================================================================================>---------]  92% with 0 failures
 Completed [==============================================================================================>--------]  92% with 0 failures
 Completed [==============================================================================================>--------]  93% with 0 failures
 Completed [===============================================================================================>-------]  93% with 0 failures
 Completed [===============================================================================================>-------]  94% with 0 failures
 Completed [================================================================================================>------]  94% with 0 failures
 Completed [================================================================================================>------]  95% with 0 failures
 Completed [=================================================================================================>-----]  95% with 0 failures
 Completed [=================================================================================================>-----]  96% with 0 failures
 Completed [==================================================================================================>----]  96% with 0 failures
 Completed [==================================================================================================>----]  97% with 0 failures
 Completed [===================================================================================================>---]  97% with 0 failures
 Completed [===================================================================================================>---]  98% with 0 failures
 Completed [====================================================================================================>--]  98% with 0 failures
 Completed [====================================================================================================>--]  99% with 0 failures
 Completed [=====================================================================================================>-]  99% with 0 failures
 Completed [======================================================================================================>] 100% with 0 failures
 Completed [=======================================================================================================] 100% with 0 failures
                                                                                                                                         

Done!
Calculating cluster 1

 Completed [======>------------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  31% with 0 failures
 Completed [================================>----------------------------------------------------------------------]  32% with 0 failures
 Completed [=================================>---------------------------------------------------------------------]  33% with 0 failures
 Completed [==================================>--------------------------------------------------------------------]  34% with 0 failures
 Completed [===================================>-------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  65% with 0 failures
 Completed [==================================================================>------------------------------------]  65% with 0 failures
 Completed [===================================================================>-----------------------------------]  66% with 0 failures
 Completed [====================================================================>----------------------------------]  67% with 0 failures
 Completed [=====================================================================>---------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  90% with 0 failures
 Completed [============================================================================================>----------]  90% with 0 failures
 Completed [============================================================================================>----------]  91% with 0 failures
 Completed [=============================================================================================>---------]  91% with 0 failures
 Completed [=============================================================================================>---------]  92% with 0 failures
 Completed [==============================================================================================>--------]  92% with 0 failures
 Completed [==============================================================================================>--------]  93% with 0 failures
 Completed [===============================================================================================>-------]  93% with 0 failures
 Completed [===============================================================================================>-------]  94% with 0 failures
 Completed [================================================================================================>------]  94% with 0 failures
 Completed [================================================================================================>------]  95% with 0 failures
 Completed [=================================================================================================>-----]  95% with 0 failures
 Completed [=================================================================================================>-----]  96% with 0 failures
 Completed [==================================================================================================>----]  96% with 0 failures
 Completed [==================================================================================================>----]  97% with 0 failures
 Completed [===================================================================================================>---]  97% with 0 failures
 Completed [===================================================================================================>---]  98% with 0 failures
 Completed [====================================================================================================>--]  98% with 0 failures
 Completed [====================================================================================================>--]  99% with 0 failures
 Completed [=====================================================================================================>-]  99% with 0 failures
 Completed [=====================================================================================================>-] 100% with 0 failures
 Completed [======================================================================================================>] 100% with 0 failures
 Completed [=======================================================================================================] 100% with 0 failures
                                                                                                                                         

Done!
Combining coefficients and standard errors
Calculating log-fold changes
Calculating likelihood ratio tests
Refitting on reduced model...

 Completed [======>------------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  31% with 0 failures
 Completed [================================>----------------------------------------------------------------------]  32% with 0 failures
 Completed [=================================>---------------------------------------------------------------------]  33% with 0 failures
 Completed [==================================>--------------------------------------------------------------------]  34% with 0 failures
 Completed [===================================>-------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  65% with 0 failures
 Completed [==================================================================>------------------------------------]  65% with 0 failures
 Completed [===================================================================>-----------------------------------]  66% with 0 failures
 Completed [====================================================================>----------------------------------]  67% with 0 failures
 Completed [=====================================================================>---------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  90% with 0 failures
 Completed [============================================================================================>----------]  90% with 0 failures
 Completed [============================================================================================>----------]  91% with 0 failures
 Completed [=============================================================================================>---------]  91% with 0 failures
 Completed [=============================================================================================>---------]  92% with 0 failures
 Completed [==============================================================================================>--------]  92% with 0 failures
 Completed [==============================================================================================>--------]  93% with 0 failures
 Completed [===============================================================================================>-------]  93% with 0 failures
 Completed [===============================================================================================>-------]  94% with 0 failures
 Completed [================================================================================================>------]  94% with 0 failures
 Completed [================================================================================================>------]  95% with 0 failures
 Completed [=================================================================================================>-----]  95% with 0 failures
 Completed [=================================================================================================>-----]  96% with 0 failures
 Completed [==================================================================================================>----]  96% with 0 failures
 Completed [==================================================================================================>----]  97% with 0 failures
 Completed [===================================================================================================>---]  97% with 0 failures
 Completed [===================================================================================================>---]  98% with 0 failures
 Completed [====================================================================================================>--]  98% with 0 failures
 Completed [====================================================================================================>--]  99% with 0 failures
 Completed [=====================================================================================================>-]  99% with 0 failures
 Completed [=====================================================================================================>-] 100% with 0 failures
 Completed [======================================================================================================>] 100% with 0 failures
 Completed [=======================================================================================================] 100% with 0 failures
                                                                                                                                         

Done!
Calculating cluster 2

 Completed [=>-----------------------------------------------------------------------------------------------------]   2% with 0 failures
 Completed [==>----------------------------------------------------------------------------------------------------]   2% with 0 failures
 Completed [==>----------------------------------------------------------------------------------------------------]   3% with 0 failures
 Completed [===>---------------------------------------------------------------------------------------------------]   3% with 0 failures
 Completed [===>---------------------------------------------------------------------------------------------------]   4% with 0 failures
 Completed [====>--------------------------------------------------------------------------------------------------]   4% with 0 failures
 Completed [====>--------------------------------------------------------------------------------------------------]   5% with 0 failures
 Completed [=====>-------------------------------------------------------------------------------------------------]   5% with 0 failures
 Completed [=====>-------------------------------------------------------------------------------------------------]   6% with 0 failures
 Completed [======>------------------------------------------------------------------------------------------------]   6% with 0 failures
 Completed [======>------------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  32% with 0 failures
 Completed [================================>----------------------------------------------------------------------]  32% with 0 failures
 Completed [=================================>---------------------------------------------------------------------]  33% with 0 failures
 Completed [==================================>--------------------------------------------------------------------]  34% with 0 failures
 Completed [===================================>-------------------------------------------------------------------]  34% with 0 failures
 Completed [===================================>-------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  65% with 0 failures
 Completed [==================================================================>------------------------------------]  65% with 0 failures
 Completed [==================================================================>------------------------------------]  66% with 0 failures
 Completed [===================================================================>-----------------------------------]  66% with 0 failures
 Completed [====================================================================>----------------------------------]  67% with 0 failures
 Completed [=====================================================================>---------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  90% with 0 failures
 Completed [============================================================================================>----------]  90% with 0 failures
 Completed [============================================================================================>----------]  91% with 0 failures
 Completed [=============================================================================================>---------]  91% with 0 failures
 Completed [=============================================================================================>---------]  92% with 0 failures
 Completed [==============================================================================================>--------]  92% with 0 failures
 Completed [==============================================================================================>--------]  93% with 0 failures
 Completed [===============================================================================================>-------]  93% with 0 failures
 Completed [===============================================================================================>-------]  94% with 0 failures
 Completed [================================================================================================>------]  94% with 0 failures
 Completed [================================================================================================>------]  95% with 0 failures
 Completed [=================================================================================================>-----]  95% with 0 failures
 Completed [=================================================================================================>-----]  96% with 0 failures
 Completed [==================================================================================================>----]  96% with 0 failures
 Completed [==================================================================================================>----]  97% with 0 failures
 Completed [===================================================================================================>---]  97% with 0 failures
 Completed [===================================================================================================>---]  98% with 0 failures
 Completed [====================================================================================================>--]  98% with 0 failures
 Completed [====================================================================================================>--]  99% with 0 failures
 Completed [=====================================================================================================>-]  99% with 0 failures
 Completed [======================================================================================================>] 100% with 0 failures
 Completed [=======================================================================================================] 100% with 0 failures
                                                                                                                                         

Done!
Combining coefficients and standard errors
Calculating log-fold changes
Calculating likelihood ratio tests
Refitting on reduced model...

 Completed [====>--------------------------------------------------------------------------------------------------]   5% with 0 failures
 Completed [=====>-------------------------------------------------------------------------------------------------]   5% with 0 failures
 Completed [=====>-------------------------------------------------------------------------------------------------]   6% with 0 failures
 Completed [======>------------------------------------------------------------------------------------------------]   6% with 0 failures
 Completed [======>------------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   7% with 0 failures
 Completed [=======>-----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   8% with 0 failures
 Completed [========>----------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]   9% with 0 failures
 Completed [=========>---------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  10% with 0 failures
 Completed [==========>--------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  11% with 0 failures
 Completed [===========>-------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  12% with 0 failures
 Completed [============>------------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  13% with 0 failures
 Completed [=============>-----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  14% with 0 failures
 Completed [==============>----------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  15% with 0 failures
 Completed [===============>---------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  16% with 0 failures
 Completed [================>--------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  17% with 0 failures
 Completed [=================>-------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  18% with 0 failures
 Completed [==================>------------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  19% with 0 failures
 Completed [===================>-----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  20% with 0 failures
 Completed [====================>----------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  21% with 0 failures
 Completed [=====================>---------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  22% with 0 failures
 Completed [======================>--------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  23% with 0 failures
 Completed [=======================>-------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  24% with 0 failures
 Completed [========================>------------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  25% with 0 failures
 Completed [=========================>-----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  26% with 0 failures
 Completed [==========================>----------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  27% with 0 failures
 Completed [===========================>---------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  28% with 0 failures
 Completed [============================>--------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  29% with 0 failures
 Completed [=============================>-------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  30% with 0 failures
 Completed [==============================>------------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  31% with 0 failures
 Completed [===============================>-----------------------------------------------------------------------]  32% with 0 failures
 Completed [================================>----------------------------------------------------------------------]  32% with 0 failures
 Completed [=================================>---------------------------------------------------------------------]  33% with 0 failures
 Completed [==================================>--------------------------------------------------------------------]  34% with 0 failures
 Completed [===================================>-------------------------------------------------------------------]  34% with 0 failures
 Completed [===================================>-------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  35% with 0 failures
 Completed [====================================>------------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  36% with 0 failures
 Completed [=====================================>-----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  37% with 0 failures
 Completed [======================================>----------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  38% with 0 failures
 Completed [=======================================>---------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  39% with 0 failures
 Completed [========================================>--------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  40% with 0 failures
 Completed [=========================================>-------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  41% with 0 failures
 Completed [==========================================>------------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  42% with 0 failures
 Completed [===========================================>-----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  43% with 0 failures
 Completed [============================================>----------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  44% with 0 failures
 Completed [=============================================>---------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  45% with 0 failures
 Completed [==============================================>--------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  46% with 0 failures
 Completed [===============================================>-------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  47% with 0 failures
 Completed [================================================>------------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  48% with 0 failures
 Completed [=================================================>-----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  49% with 0 failures
 Completed [==================================================>----------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  50% with 0 failures
 Completed [===================================================>---------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  51% with 0 failures
 Completed [====================================================>--------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  52% with 0 failures
 Completed [=====================================================>-------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  53% with 0 failures
 Completed [======================================================>------------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  54% with 0 failures
 Completed [=======================================================>-----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  55% with 0 failures
 Completed [========================================================>----------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  56% with 0 failures
 Completed [=========================================================>---------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  57% with 0 failures
 Completed [==========================================================>--------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  58% with 0 failures
 Completed [===========================================================>-------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  59% with 0 failures
 Completed [============================================================>------------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  60% with 0 failures
 Completed [=============================================================>-----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  61% with 0 failures
 Completed [==============================================================>----------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  62% with 0 failures
 Completed [===============================================================>---------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  63% with 0 failures
 Completed [================================================================>--------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  64% with 0 failures
 Completed [=================================================================>-------------------------------------]  65% with 0 failures
 Completed [==================================================================>------------------------------------]  65% with 0 failures
 Completed [==================================================================>------------------------------------]  66% with 0 failures
 Completed [===================================================================>-----------------------------------]  66% with 0 failures
 Completed [====================================================================>----------------------------------]  67% with 0 failures
 Completed [=====================================================================>---------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  68% with 0 failures
 Completed [======================================================================>--------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  69% with 0 failures
 Completed [=======================================================================>-------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  70% with 0 failures
 Completed [========================================================================>------------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  71% with 0 failures
 Completed [=========================================================================>-----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  72% with 0 failures
 Completed [==========================================================================>----------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  73% with 0 failures
 Completed [===========================================================================>---------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  74% with 0 failures
 Completed [============================================================================>--------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  75% with 0 failures
 Completed [=============================================================================>-------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  76% with 0 failures
 Completed [==============================================================================>------------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  77% with 0 failures
 Completed [===============================================================================>-----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  78% with 0 failures
 Completed [================================================================================>----------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  79% with 0 failures
 Completed [=================================================================================>---------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  80% with 0 failures
 Completed [==================================================================================>--------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  81% with 0 failures
 Completed [===================================================================================>-------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  82% with 0 failures
 Completed [====================================================================================>------------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  83% with 0 failures
 Completed [=====================================================================================>-----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  84% with 0 failures
 Completed [======================================================================================>----------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  85% with 0 failures
 Completed [=======================================================================================>---------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  86% with 0 failures
 Completed [========================================================================================>--------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  87% with 0 failures
 Completed [=========================================================================================>-------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  88% with 0 failures
 Completed [==========================================================================================>------------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  89% with 0 failures
 Completed [===========================================================================================>-----------]  90% with 0 failures
 Completed [============================================================================================>----------]  90% with 0 failures
 Completed [============================================================================================>----------]  91% with 0 failures
 Completed [=============================================================================================>---------]  91% with 0 failures
 Completed [=============================================================================================>---------]  92% with 0 failures
 Completed [==============================================================================================>--------]  92% with 0 failures
 Completed [==============================================================================================>--------]  93% with 0 failures
 Completed [===============================================================================================>-------]  93% with 0 failures
 Completed [===============================================================================================>-------]  94% with 0 failures
 Completed [================================================================================================>------]  94% with 0 failures
 Completed [================================================================================================>------]  95% with 0 failures
 Completed [=================================================================================================>-----]  95% with 0 failures
 Completed [=================================================================================================>-----]  96% with 0 failures
 Completed [==================================================================================================>----]  96% with 0 failures
 Completed [==================================================================================================>----]  97% with 0 failures
 Completed [===================================================================================================>---]  97% with 0 failures
 Completed [===================================================================================================>---]  98% with 0 failures
 Completed [====================================================================================================>--]  98% with 0 failures
 Completed [====================================================================================================>--]  99% with 0 failures
 Completed [=====================================================================================================>-]  99% with 0 failures
 Completed [======================================================================================================>] 100% with 0 failures
 Completed [=======================================================================================================] 100% with 0 failures
                                                                                                                                         

Done!
cca_top_markers = cca_markers %>%
    group_by(cluster) %>%
    slice_min(n = 5, order_by = p_val_adj)
VlnPlot(cca_seurat, features = c("Dab2", "Kcnab1"))

VlnPlot(cca_seurat, features = c("Cenpf", "Pttg1"))

VlnPlot(cca_seurat, features = c("Upk1b", "Timp3"))

NA
NA

dab2 involved in endothelial stuf -> 0 is probably induced cardiomyocyet Upk1b is involved in epithelial stuff -> 2 is porbably fibroblasts 1 - induced fibroblasts

Idents(cca_seurat)  = "RNA_snn_res.1"
cca_seurat = RenameIdents(cca_seurat, `0` = "iCM")
cca_seurat = RenameIdents(cca_seurat, `1` = "iFib")
cca_seurat = RenameIdents(cca_seurat, `2` = "Fib")
DimPlot(cca_seurat, label = TRUE)

SC Transform

seurat.sc = CreateSeuratObject(counts = exp)
seurat.sc = SCTransform(seurat.sc)
seurat.sc = RunPCA(seurat.sc, features =  VariableFeatures(seurat.sc))
identified_cells = identified_cells[match(rownames(seurat.sc@meta.data), rownames(identified_cells)),]
seurat.sc@meta.data$cc_paper = identified_cells$CC
seurat.sc@meta.data$cat_paper = identified_cells$stage

seurat.sc = RunUMAP(seurat.sc, dims = 1:15)
seurat.sc = FindNeighbors(seurat.sc, dims = 1:15)
seurat.sc = FindClusters(seurat.sc, resolution = 1.75)
seurat.sc = CellCycleScoring(seurat.sc, s.features = s.genes, g2m.features = g2m.genes)
clusters = DimPlot(seurat.sc, group.by = "SCT_snn_res.1.75", label = TRUE, reduction = "umap")
real_condition = DimPlot(seurat.sc, group.by = "cc_paper", label = TRUE, reduction = "umap") 
phase = DimPlot(seurat.sc, group.by = "Phase", label = TRUE, reduction = "umap") 
cat = DimPlot(seurat.sc, group.by = "cat_paper", label = TRUE, reduction = "umap") 

clusters|real_condition|phase|cat
LS0tCnRpdGxlOiAiUiBOb3RlYm9vayIKb3V0cHV0OiBodG1sX25vdGVib29rCi0tLQoKVGhpcyBpcyBhbiBbUiBNYXJrZG93bl0oaHR0cDovL3JtYXJrZG93bi5yc3R1ZGlvLmNvbSkgTm90ZWJvb2suIFdoZW4geW91IGV4ZWN1dGUgY29kZSB3aXRoaW4gdGhlIG5vdGVib29rLCB0aGUgcmVzdWx0cyBhcHBlYXIgYmVuZWF0aCB0aGUgY29kZS4gCgpUcnkgZXhlY3V0aW5nIHRoaXMgY2h1bmsgYnkgY2xpY2tpbmcgdGhlICpSdW4qIGJ1dHRvbiB3aXRoaW4gdGhlIGNodW5rIG9yIGJ5IHBsYWNpbmcgeW91ciBjdXJzb3IgaW5zaWRlIGl0IGFuZCBwcmVzc2luZyAqQ21kK1NoaWZ0K0VudGVyKi4gCgpgYGB7cn0KbGlicmFyeSgiZGV2dG9vbHMiKQppbnN0YWxsX2dpdGh1YigiancxNTY2MDUvU0xJQ0VSIikKbGlicmFyeShTZXVyYXQpCmxpYnJhcnkocmVhZHIpCmxpYnJhcnkodGlkeXZlcnNlKQpsaWJyYXJ5KEhHQykgCmxpYnJhcnkobGF0dGljZUV4dHJhKQpsaWJyYXJ5KGxhdHRpY2UpIApsaWJyYXJ5KFJDb2xvckJyZXdlcikKbGlicmFyeShjbHVzdGVyUHJvZmlsZXIpCmxpYnJhcnkob3JnLk1tLmVnLmRiKQpsaWJyYXJ5KEFubm90YXRpb25EYmkpCmBgYAoKCmBgYHtyfQpleHAgPSByZWFkX2Nzdigibm9ybWFsaXplZF9kYXRhLmNzdiIpCmV4cCA9IGRpc2NhcmQoZXhwLH5hbGwoaXMubmEoLikgfC4gID09ICIiKSkKZXhwID0gZGlzdGluY3QoZXhwLCBgLi4uMWAsIC5rZWVwX2FsbCA9IFRSVUUpCiMgZmlsdGVyaW5nIG91dCB0aGUgcmVwcm9ncmFtbWluZyB0cmFuc2NyaXB0aW9uIGZhY3RvcnMgCmV4cCA9IGZpbHRlcihleHAsICFgLi4uMWAlaW4lIGMoIk1lZjJjIiwgIkdhdGE0IiwgIlRieDUiKSkKZXhwID0gY29sdW1uX3RvX3Jvd25hbWVzKGV4cCwgdmFyPSIuLi4xIikKCmBgYApgYGB7cn0KCnNldXJhdC5vYmogPSBDcmVhdGVTZXVyYXRPYmplY3QoY291bnRzID0gZXhwKQpgYGAKYGBge3J9CnNldXJhdC5vYmogPSBOb3JtYWxpemVEYXRhKHNldXJhdC5vYmopCnNldXJhdC5vYmogPSBGaW5kVmFyaWFibGVGZWF0dXJlcyhzZXVyYXQub2JqLCBzZWxlY3Rpb24ubWV0aG9kID0gICJ2c3QiLCBuZmVhdHVyZXMgPSAxMDAwMCkKYWxsLmdlbmVzID0gcm93bmFtZXMoc2V1cmF0Lm9iaikKc2V1cmF0Lm9iaiA9IFNjYWxlRGF0YShzZXVyYXQub2JqLCBmZWF0dXJlcyA9IGFsbC5nZW5lcykKc2V1cmF0Lm9iaiA9IFJ1blBDQShzZXVyYXQub2JqLCBmZWF0dXJlcyA9ICBWYXJpYWJsZUZlYXR1cmVzKHNldXJhdC5vYmopKQoKYGBgCmBgYHtyfQpFbGJvd1Bsb3Qoc2V1cmF0Lm9iaikKYGBgCgpgYGB7cn0Kc2V1cmF0Lm9iaiA9IEZpbmROZWlnaGJvcnMoc2V1cmF0Lm9iaiwgZGltcyA9IDE6MTUpCmBgYAoKYGBge3J9CnNldXJhdC5vYmogPSBGaW5kQ2x1c3RlcnMoc2V1cmF0Lm9iaiwgcmVzb2x1dGlvbiA9IDEuNzUpCmBgYApgYGB7cn0KaWRlbnRpZmllZF9jZWxscyA9IHJlYWQuY3N2KCJwYXBlcl9jZWxsX3N0YXRlcy5jc3YiLCByb3cubmFtZXMgPSAxLCBoZWFkZXI9VFJVRSkKYGBgCmBgYHtyfQppZGVudGlmaWVkX2NlbGxzID0gaWRlbnRpZmllZF9jZWxsc1ttYXRjaChyb3duYW1lcyhzZXVyYXQub2JqQG1ldGEuZGF0YSksIHJvd25hbWVzKGlkZW50aWZpZWRfY2VsbHMpKSxdCnNldXJhdC5vYmpAbWV0YS5kYXRhJGNjX3BhcGVyID0gaWRlbnRpZmllZF9jZWxscyRDQwpzZXVyYXQub2JqQG1ldGEuZGF0YSRjYXRfcGFwZXIgPSBpZGVudGlmaWVkX2NlbGxzJHN0YWdlCnNldXJhdC5vYmpAbWV0YS5kYXRhJGNjX2hjbHVzdCA9ICJDQ0kiCnNldXJhdC5vYmpAbWV0YS5kYXRhW2FjdGl2ZV9jZWxscyxdJGNjX2hjbHVzdCA9ICJDQ0EiCgpgYGAKCgpgYGB7cn0KSWRlbnRzKHNldXJhdC5vYmopICA9ICJSTkFfc25uX3Jlcy4xLjc1IgpgYGAKCmBgYHtyfQpzZXVyYXQub2JqID0gUnVuVU1BUChzZXVyYXQub2JqLCBkaW1zID0gMToxNSkKYGBgCmBgYHtyfQpzZXVyYXQub2JqID0gUnVuVFNORShzZXVyYXQub2JqLCBkaW1zID0gMToxNSkKRGltUGxvdChzZXVyYXQub2JqLCByZWR1Y3Rpb24gPSAidHNuZSIsIGdyb3VwLmJ5ID0gJ1JOQV9zbm5fcmVzLjEuNzUnKQpgYGAgCgpgYGB7cn0KbWFya2VycyA9IEZpbmRBbGxNYXJrZXJzKHNldXJhdC5vYmosIGxvZ2ZjLnRocmVzaG9sZCA9ICAwLjI1LCBtaW4ucGN0ID0gMC4xLCBvbmx5LnBvcyA9IEZBTFNFLCB0ZXN0LnVzZSA9ICdNQVNUJykKYGBgCmBgYHtyfQp0b3BfbWFya2VycyA9IG1hcmtlcnMgJT4lCiAgICBncm91cF9ieShjbHVzdGVyKSAlPiUKICAgIHNsaWNlX21heChuID0gMiwgb3JkZXJfYnkgPSBhdmdfbG9nMkZDKQpgYGAKCmBgYHtyfQpGZWF0dXJlUGxvdChzZXVyYXQub2JqLCBmZWF0dXJlcyA9IGMoIkRocnMzIiksIG1pbi5jdXRvZmYgPSAncTEwJykKYGBgCmBgYHtyfQpWbG5QbG90KHNldXJhdC5vYmosIGZlYXR1cmVzID0gYygiUmJwMSIsICJEaHJzMyIpKQpWbG5QbG90KHNldXJhdC5vYmosIGZlYXR1cmVzID0gYygiRnN0bDEiLCAiQmduIikpClZsblBsb3Qoc2V1cmF0Lm9iaiwgZmVhdHVyZXMgPSBjKCJTZXJwaW5oMSIsICJEc3AiKSkKVmxuUGxvdChzZXVyYXQub2JqLCBmZWF0dXJlcyA9IGMoIlByYzEiLCAiQmlyYzUiKSkKYGBgCmBgYHtyfQojIyBjZWxsIGN5Y2xlIApzLmdlbmVzIDwtIHN0cl90b190aXRsZShjYy5nZW5lcyRzLmdlbmVzKQpnMm0uZ2VuZXMgPC0gc3RyX3RvX3RpdGxlKGNjLmdlbmVzJGcybS5nZW5lcykKCnNldXJhdC5vYmogPSBDZWxsQ3ljbGVTY29yaW5nKHNldXJhdC5vYmosIHMuZmVhdHVyZXMgPSBzLmdlbmVzLCBnMm0uZmVhdHVyZXMgPSBnMm0uZ2VuZXMpCmBgYAoKCmBgYHtyfQpjbHVzdGVycyA9IERpbVBsb3Qoc2V1cmF0Lm9iaiwgZ3JvdXAuYnkgPSAiUk5BX3Nubl9yZXMuMS43NSIsIGxhYmVsID0gVFJVRSwgcmVkdWN0aW9uID0gInVtYXAiKQpyZWFsX2NvbmRpdGlvbiA9IERpbVBsb3Qoc2V1cmF0Lm9iaiwgZ3JvdXAuYnkgPSAiY2NfcGFwZXIiLCBsYWJlbCA9IFRSVUUsIHJlZHVjdGlvbiA9ICJ1bWFwIikgCnBoYXNlID0gRGltUGxvdChzZXVyYXQub2JqLCBncm91cC5ieSA9ICJQaGFzZSIsIGxhYmVsID0gVFJVRSwgcmVkdWN0aW9uID0gInVtYXAiKSAKY2F0ID0gRGltUGxvdChzZXVyYXQub2JqLCBncm91cC5ieSA9ICJjY19oY2x1c3QiLCBsYWJlbCA9IFRSVUUsIHJlZHVjdGlvbiA9ICJ1bWFwIikgCgpjbHVzdGVyc3xyZWFsX2NvbmRpdGlvbnxwaGFzZXxjYXQKCgpgYGAKCiMjIHN1YnNldHRpbmcgdGhlIGNlbGxzIHRoYXQgZml0IHdpdGggaGNsdXN0IGFuZCBwZXJmb3JtaW5nIGNsdXN0ZXJpbmcgb24gZWFjaCBncm91cCAKCmBgYHtyfQpjY2Ffc2V1cmF0ID0gc3Vic2V0KHggPSBzZXVyYXQub2JqLCBzdWJzZXQgPSBjY19oY2x1c3QgPT0gIkNDQSIpCmNjaV9zZXVyYXQgPSBzdWJzZXQoeCA9IHNldXJhdC5vYmosIHN1YnNldCA9IGNjX2hjbHVzdCA9PSAiQ0NJIikKCmBgYAoKIyMgY2x1c3RlcmluZyBDQ0kgY2VscyAKCmBgYHtyfQpjY2lfc2V1cmF0ID0gRmluZE5laWdoYm9ycyhjY2lfc2V1cmF0LCBkaW1zID0gMToxNSkKY2NpX3NldXJhdCA9IEZpbmRDbHVzdGVycyhjY2lfc2V1cmF0LCByZXNvbHV0aW9uID0gMSkKYGBgCgpgYGB7cn0KY2w9IERpbVBsb3QoY2NpX3NldXJhdCwgZ3JvdXAuYnkgPSAiUk5BX3Nubl9yZXMuMSIsbGFiZWwgPSBUUlVFKQpwYXAgPSBEaW1QbG90KGNjaV9zZXVyYXQsIGdyb3VwLmJ5ID0gImNhdF9wYXBlciIsIGxhYmVsID0gVFJVRSkKY2x8cGFwCmBgYAojIyBpZGVudGlmeWluZyBDQ0kgY2VsbHMgCgpgYGB7cn0KY2NpX21hcmtlcnMgPSBGaW5kQWxsTWFya2VycyhjY2lfc2V1cmF0LCBsb2dmYy50aHJlc2hvbGQgPSAgMC4yNSwgbWluLnBjdCA9IDAuMSwgb25seS5wb3MgPSBGQUxTRSwgdGVzdC51c2UgPSAnTUFTVCcpCmBgYApgYGB7cn0KY2NpX3RvcF9tYXJrZXJzID0gY2NpX21hcmtlcnMgJT4lCiAgICBncm91cF9ieShjbHVzdGVyKSAlPiUKICAgIHNsaWNlX21pbihuID0gNSwgb3JkZXJfYnkgPSBwX3ZhbF9hZGopCmBgYAoKYGBge3J9ClZsblBsb3QoY2NpX3NldXJhdCwgZmVhdHVyZXMgPSBjKCJGc3RsMSIsICJCZ24iKSkKVmxuUGxvdChjY2lfc2V1cmF0LCBmZWF0dXJlcyA9IGMoIlRubmkzIiwgIlNtcHgiKSkKVmxuUGxvdChjY2lfc2V1cmF0LCBmZWF0dXJlcyA9IGMoIlNlcnBpbmgxIiwgIkRzcCIpKQpWbG5QbG90KGNjaV9zZXVyYXQsIGZlYXR1cmVzID0gYygiQ2xjYTIiLCAiUmJwMSIpKQpWbG5QbG90KGNjaV9zZXVyYXQsIGZlYXR1cmVzID0gYygiQ2ZoIiwgIkI0Z2FsdDEiKSkKCmBgYAojIyMjIAoKRnN0bDEgaW52b2x2ZWQgaW4gZW5kb3RoZWxpYWwgY2VsbCBkaWZmZXJlbnRpYXRpb24gYW5kIGVuZG90aGVsaWFsIGNlbGwgbWlncmF0aW9uIGFuZCBCZ24gaXMgYSBnZW5lIHRoYXQgaXMgdXNlZCBmb3IgY29ubmVjdGl2ZSB0aXNzdWUgbWV0YWJvbGlzbSAtPiBsb3dlciBleHByZXNzaW9uIC0+IGNsdXN0ZXIgMCA9IGlDTSAKClRubmkzLCBzbXB4LCBkc3AgdXNlZCBmb3IgY2FyZGlvbXljb3l0ZXMgLT4gY2x1c3RlciAyID0gcHJlLWlDTSwgY2x1c3RlciAxIGFuZCAzIGFyZSBzdGlsbCBmaWJyb2JsYXN0cyAKCmNsdXNldGVyIDEgZnVydGhlciBhd2F5IGZyb20gY2x1c3RlciAwID0gZmlicm9ibGFzdHIKY2x1c2V0ciAzID0gaW5kdWNlZCBmaWJyb2JsYXN0cwoKYGBge3J9CklkZW50cyhjY2lfc2V1cmF0KSAgPSAiUk5BX3Nubl9yZXMuMSIKY2NpX3NldXJhdCA9IFJlbmFtZUlkZW50cyhjY2lfc2V1cmF0LCBgMGAgPSAiaUNNIikKY2NpX3NldXJhdCA9IFJlbmFtZUlkZW50cyhjY2lfc2V1cmF0LCBgMWAgPSAiRmliIikKY2NpX3NldXJhdCA9IFJlbmFtZUlkZW50cyhjY2lfc2V1cmF0LCBgMmAgPSAicGlDTSIpCmNjaV9zZXVyYXQgPSBSZW5hbWVJZGVudHMoY2NpX3NldXJhdCwgYDNgID0gImlGaWIiKQoKYGBgCgpgYGB7cn0KRGltUGxvdChjY2lfc2V1cmF0LCBsYWJlbCA9IFRSVUUpCgpgYGAKIyMgY2x1c3RlcmluZyBDQ0EgY2VsbHMKCgpgYGB7cn0KY2NhX3NldXJhdCA9IEZpbmROZWlnaGJvcnMoY2NhX3NldXJhdCwgZGltcyA9IDE6MTUpCmNjYV9zZXVyYXQgPSBGaW5kQ2x1c3RlcnMoY2NhX3NldXJhdCwgcmVzb2x1dGlvbiA9IDEpCmBgYAoKYGBge3J9CmNsPSBEaW1QbG90KGNjYV9zZXVyYXQsIGdyb3VwLmJ5ID0gIlJOQV9zbm5fcmVzLjEiLGxhYmVsID0gVFJVRSkKcGFwID0gRGltUGxvdChjY2Ffc2V1cmF0LCBncm91cC5ieSA9ICJjYXRfcGFwZXIiLCBsYWJlbCA9IFRSVUUpCmNsfHBhcApgYGAKIyMgaWRlbnRpZnlpbmcgQ0NBIGNlbGxzIAoKYGBge3J9CmNjYV9tYXJrZXJzID0gRmluZEFsbE1hcmtlcnMoY2NhX3NldXJhdCwgbG9nZmMudGhyZXNob2xkID0gIDAuMjUsIG1pbi5wY3QgPSAwLjEsIG9ubHkucG9zID0gRkFMU0UsIHRlc3QudXNlID0gJ01BU1QnKQpgYGAKYGBge3J9CmNjYV90b3BfbWFya2VycyA9IGNjYV9tYXJrZXJzICU+JQogICAgZ3JvdXBfYnkoY2x1c3RlcikgJT4lCiAgICBzbGljZV9taW4obiA9IDUsIG9yZGVyX2J5ID0gcF92YWxfYWRqKQpgYGAKCmBgYHtyfQpWbG5QbG90KGNjYV9zZXVyYXQsIGZlYXR1cmVzID0gYygiRGFiMiIsICJLY25hYjEiKSkKVmxuUGxvdChjY2Ffc2V1cmF0LCBmZWF0dXJlcyA9IGMoIkNlbnBmIiwgIlB0dGcxIikpClZsblBsb3QoY2NhX3NldXJhdCwgZmVhdHVyZXMgPSBjKCJVcGsxYiIsICJUaW1wMyIpKQoKCmBgYAojIyMjIAoKZGFiMiBpbnZvbHZlZCBpbiBlbmRvdGhlbGlhbCBzdHVmIC0+IDAgaXMgcHJvYmFibHkgaW5kdWNlZCBjYXJkaW9teW9jeWV0ClVwazFiIGlzIGludm9sdmVkIGluIGVwaXRoZWxpYWwgc3R1ZmYgLT4gMiBpcyBwb3JiYWJseSBmaWJyb2JsYXN0cyAKMSAtIGluZHVjZWQgZmlicm9ibGFzdHMKCmBgYHtyfQpJZGVudHMoY2NhX3NldXJhdCkgID0gIlJOQV9zbm5fcmVzLjEiCmNjYV9zZXVyYXQgPSBSZW5hbWVJZGVudHMoY2NhX3NldXJhdCwgYDBgID0gImlDTSIpCmNjYV9zZXVyYXQgPSBSZW5hbWVJZGVudHMoY2NhX3NldXJhdCwgYDFgID0gImlGaWIiKQpjY2Ffc2V1cmF0ID0gUmVuYW1lSWRlbnRzKGNjYV9zZXVyYXQsIGAyYCA9ICJGaWIiKQoKCmBgYAoKYGBge3J9CkRpbVBsb3QoY2NhX3NldXJhdCwgbGFiZWwgPSBUUlVFKQoKYGBgCgojIyBTQyBUcmFuc2Zvcm0gICAgICAgCmBgYHtyfQpzZXVyYXQuc2MgPSBDcmVhdGVTZXVyYXRPYmplY3QoY291bnRzID0gZXhwKQpzZXVyYXQuc2MgPSBTQ1RyYW5zZm9ybShzZXVyYXQuc2MpCmBgYApgYGB7cn0Kc2V1cmF0LnNjID0gUnVuUENBKHNldXJhdC5zYywgZmVhdHVyZXMgPSAgVmFyaWFibGVGZWF0dXJlcyhzZXVyYXQuc2MpKQpgYGAKCmBgYHtyfQppZGVudGlmaWVkX2NlbGxzID0gaWRlbnRpZmllZF9jZWxsc1ttYXRjaChyb3duYW1lcyhzZXVyYXQuc2NAbWV0YS5kYXRhKSwgcm93bmFtZXMoaWRlbnRpZmllZF9jZWxscykpLF0Kc2V1cmF0LnNjQG1ldGEuZGF0YSRjY19wYXBlciA9IGlkZW50aWZpZWRfY2VsbHMkQ0MKc2V1cmF0LnNjQG1ldGEuZGF0YSRjYXRfcGFwZXIgPSBpZGVudGlmaWVkX2NlbGxzJHN0YWdlCgpzZXVyYXQuc2MgPSBSdW5VTUFQKHNldXJhdC5zYywgZGltcyA9IDE6MTUpCnNldXJhdC5zYyA9IEZpbmROZWlnaGJvcnMoc2V1cmF0LnNjLCBkaW1zID0gMToxNSkKc2V1cmF0LnNjID0gRmluZENsdXN0ZXJzKHNldXJhdC5zYywgcmVzb2x1dGlvbiA9IDEuNzUpCmBgYAoKYGBge3J9CnNldXJhdC5zYyA9IENlbGxDeWNsZVNjb3Jpbmcoc2V1cmF0LnNjLCBzLmZlYXR1cmVzID0gcy5nZW5lcywgZzJtLmZlYXR1cmVzID0gZzJtLmdlbmVzKQpgYGAKCmBgYHtyfQpjbHVzdGVycyA9IERpbVBsb3Qoc2V1cmF0LnNjLCBncm91cC5ieSA9ICJTQ1Rfc25uX3Jlcy4xLjc1IiwgbGFiZWwgPSBUUlVFLCByZWR1Y3Rpb24gPSAidW1hcCIpCnJlYWxfY29uZGl0aW9uID0gRGltUGxvdChzZXVyYXQuc2MsIGdyb3VwLmJ5ID0gImNjX3BhcGVyIiwgbGFiZWwgPSBUUlVFLCByZWR1Y3Rpb24gPSAidW1hcCIpIApwaGFzZSA9IERpbVBsb3Qoc2V1cmF0LnNjLCBncm91cC5ieSA9ICJQaGFzZSIsIGxhYmVsID0gVFJVRSwgcmVkdWN0aW9uID0gInVtYXAiKSAKY2F0ID0gRGltUGxvdChzZXVyYXQuc2MsIGdyb3VwLmJ5ID0gImNhdF9wYXBlciIsIGxhYmVsID0gVFJVRSwgcmVkdWN0aW9uID0gInVtYXAiKSAKCmNsdXN0ZXJzfHJlYWxfY29uZGl0aW9ufHBoYXNlfGNhdAoKYGBgCgo=